home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / osi / isode / dosisode / DOSISODE80.ZIP / ISODE8.WRK / DSAP / MAKE.BAT < prev   
Encoding:
DOS Batch File  |  1992-05-18  |  609 b   |  39 lines

  1. @echo off
  2. if not "%1." == "clean." goto check_tidy
  3.     del *.a
  4.     cd x500as
  5.     call make %1
  6.     cd ..\common
  7.     call make %1
  8.     cd ..\net
  9.     call make %1
  10.     cd ..
  11.     goto end
  12. :check_tidy
  13. if not "%1." == "tidy." goto check_null
  14.     cd x500as
  15.     call make %1
  16.     cd ..\common
  17.     call make %1
  18.     cd ..\net
  19.     call make %1
  20.     cd ..
  21.     goto end
  22. :check_null
  23. if not "%1." == "." goto bad_param
  24.     cd x500as
  25.     call make %1
  26.     cd ..\common
  27.     call make %1
  28.     cd ..\net
  29.     call make %1
  30.     cd ..
  31.     ar r temp.a @dsap.lnk >nul:
  32.     copy temp.a libdsap.a >nul:
  33.     ar rs libdsap.a
  34.     del temp.a
  35.     goto end
  36. :bad_param
  37.     echo unknown option %1
  38. :end
  39.